@prefix iop: <https://w3id.org/iadopt/ont/> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix ex: <http://example.org/iadopt/HFR> .

ex:Variable
    a 
        iop:Variable ;
    rdfs:label 
        "Depth quality flag " ;
    rdfs:comment 
        """QC flags stating if the depth associated to the data is correct or not.""" ;
    iop:hasObjectOfInterest 
        ex:OoI ;
    iop:hasProperty 
        ex:Prop .

ex:OoI
    a 
        iop:Entity ;
    rdfs:label 
        "depth information of dataset" .

ex:Prop
    a 
        iop:Property ;
    rdfs:label 
        "quality flag" .
